home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / bbs / ho56.zip / PHONE.BAT < prev    next >
DOS Batch File  |  1995-08-30  |  1KB  |  63 lines

  1. @echo off
  2. rem Hands on demo menu
  3. rem  updated Tue  08-29-1995  19:58:31
  4. rem Fri  09-23-1994  11:00:59 started as a more elaborate demonstration
  5. rem
  6. :start
  7. homnu menu "t:Phone entries" "General" "Select" "New " "Edit " "Modem reset" "Help" "Exit" nc
  8. if errorlevel == 7 goto :end
  9. if errorlevel == 6 goto :help
  10. if errorlevel == 5 goto :reset
  11. if errorlevel == 4 goto :editdial
  12. if errorlevel == 3 goto :new
  13. if errorlevel == 2 goto :dial
  14. if errorlevel == 1 goto :general
  15. goto :end
  16.  
  17. :general
  18. 1sthand call
  19. if not exist MAKECALL.BAT to passby
  20.    call makecall
  21.    erase makecall.bat
  22. :passby
  23. rem pause
  24. cls
  25. goto :start
  26.  
  27. :dial
  28. 1sthand dial
  29. rem   makecall is run because it might exist
  30. if not exist makecall.bat goto passby2
  31. call makecall
  32. erase makecall.bat
  33. :passby2
  34. cls
  35. goto :start
  36.  
  37. :new
  38. 1sthand dial new
  39. goto :start
  40.  
  41. :editdial
  42. 1sthand dial edit
  43. goto :start
  44.  
  45. :reset
  46. cls
  47. echo .
  48. echo . Now configuring the modem.  Try doing it daily.
  49. echo .
  50. echo . This just runs HOMODSET with the homodset.dat file.
  51. echo .
  52. homodset
  53. goto :start
  54.  
  55. :help
  56. rem basic help
  57. 1sthand manuals
  58. goto :start
  59.  
  60. :end
  61. homenu.bat
  62. rem   END
  63.